home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000210_dba_222@yahoo.com_Tue Jan 14 11:00:07 EST 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  66 lines

  1. Article: 14000 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: dba_222@yahoo.com (Roger Redford)
  4. Newsgroups: comp.databases.oracle.server,comp.security.ssh,comp.terminals,comp.protocols.kermit.misc
  5. Subject: Strange behavior with SQLPLUS (Oracle)
  6. Date: 14 Jan 2003 07:53:58 -0800
  7. Organization: http://groups.google.com/
  8. Lines: 48
  9. Message-ID: <a8c29269.0301140753.7ee5175c@posting.google.com>
  10. NNTP-Posting-Host: 205.181.14.12
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1042559638 8718 127.0.0.1 (14 Jan 2003 15:53:58 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: 14 Jan 2003 15:53:58 GMT
  16. Xref: newsmaster.cc.columbia.edu comp.databases.oracle.server:214774 comp.security.ssh:30769 comp.terminals:17732 comp.protocols.kermit.misc:14000
  17.  
  18. I've recently moved to a new environment, and I'm getting some strange
  19. symptoms with sqlplus.  The environment is:
  20.  
  21. Oracle 9.2, on solaris
  22. Ibm thinkpad laptop
  23. Smarterm and Putty
  24.  
  25. I've used both Smarterm and Putty to connect to unix and use sqlplus.  It is 
  26. using SSH, but the symptoms occur whether I am just using telnet, or ssh. 
  27.  
  28.  
  29. The symptom is:
  30.  
  31. When do I select some long columns, such as TABLE_OWNER, 
  32. OR table_name, the field takes up a whole line.
  33.  
  34.  
  35. IE. 
  36.  
  37. Select     table_owner ,
  38.         table_name  , 
  39.         partition_name,
  40.         NUM_ROWS,
  41.         LAST_ANALYZED
  42. from        all_tab_partitions
  43. where        NUM_ROWS = 0
  44. ORDER BY     TABLE_OWNER,
  45.         TABLE_NAME,
  46.         PARTITION_NAME
  47.  
  48.  
  49. I have tried: 
  50. set linesize 30000
  51. substr(table_owner, 1, 20) as table_owner 
  52.  
  53. Yet, no matter what I do, the symptoms persist.  
  54.  
  55. Set wrap is on.  If I set it off, I will only see the first field.
  56.  
  57. The crazy thing is, that my neighbors' sqlplus works normally,
  58. and only returns 30 or less columns.  
  59.  
  60.  
  61. Is there a setting that I should be concerned about?  Is it in 
  62. sqlplus, or in the client software (Putty, or Smarterm)?
  63.  
  64.  
  65. Thanks
  66.